22
|
Is it possible to let user choose the inserting mode, when he presses Insert key ( method 1 )
<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = "00:00"
.Text = "12:3"
.AllowToggleInsertMode = True
.InsertMode = 1
End With
End Function
</SCRIPT>
</BODY>
|
21
|
Does your control support overtype mode ( method 2 )

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = "00:00;;;overtype"
.Text = "12:3"
End With
End Function
</SCRIPT>
</BODY>
|
20
|
Does your control support overtype mode ( method 1 )

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.InsertMode = 1
.Mask = "00:00"
.Text = "12:3"
End With
End Function
</SCRIPT>
</BODY>
|
19
|
How can I change the colors to show a read only field

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.ForeColorReadOnly = RGB(255,255,255)
.BackColorReadOnly = RGB(0,0,0)
.ReadOnly = True
.Text = "text"
End With
End Function
</SCRIPT>
</BODY>
|
18
|
How can I lock or make read only the field (method 2)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.ReadOnly = True
.Text = "text"
End With
End Function
</SCRIPT>
</BODY>
|
17
|
How can I lock or make read only the field (method 1)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = "*;;;readonly"
.Text = "text"
End With
End Function
</SCRIPT>
</BODY>
|
16
|
Is it possible to mask a password field (method 2)
<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Right = True
.Text = "text"
End With
End Function
</SCRIPT>
</BODY>
|
15
|
Is it possible to right align field (method 1)
<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = "*;;;right"
.Text = "text"
End With
End Function
</SCRIPT>
</BODY>
|
14
|
Is it possible to mask a password field (method 2)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Password = True
.Text = "password"
End With
End Function
</SCRIPT>
</BODY>
|
13
|
Is it possible to mask a password field (method 1)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = "*;;;password"
.Text = "password"
End With
End Function
</SCRIPT>
</BODY>
|
12
|
How can I mask an integer within a range

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = "{1950,2050}"
.Text = 1979
End With
End Function
</SCRIPT>
</BODY>
|
11
|
How can I mask an integer value with no grouping support

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = ";;;float,grouping=,decimal=,digits=0,select=1"
.Text = 12345.67
End With
End Function
</SCRIPT>
</BODY>
|
10
|
How can I mask an integer value (method 2)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = "-#####;;;float,select=1"
.Text = -12345.67
End With
End Function
</SCRIPT>
</BODY>
|
9
|
How can I mask an integer value (method 1)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = ";;;float,decimal=,digits=0,select=1"
.Text = 12345.67
End With
End Function
</SCRIPT>
</BODY>
|
8
|
How can I specify the number of digits when masking a float (method 2)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = "###.#;;;float,select=1"
.Text = 12345.67
End With
End Function
</SCRIPT>
</BODY>
|
7
|
How can I specify the number of digits when masking a float (method 1)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = ";;;float,select=1,digits=1"
.Text = 12345.67
End With
End Function
</SCRIPT>
</BODY>
|
6
|
How do I mask a positive, floating point numbers support, including grouping of digits

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = ";;;float,select=1,negative=0"
.Text = -12345.67
End With
End Function
</SCRIPT>
</BODY>
|
5
|
How do I mask a floating point numbers support, with a different decimal character

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = ";;;float,grouping= ,decimal=\,,select=1"
.Text = "12345,67"
End With
End Function
</SCRIPT>
</BODY>
|
4
|
How do I mask a floating point numbers support, excluding grouping of digits

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = ";;;float,grouping=,select=1"
.Text = 12345.67
End With
End Function
</SCRIPT>
</BODY>
|
3
|
How do I mask a floating point numbers support, including grouping of digits

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.Mask = ";;;float,select=1"
.Text = 12345.67
End With
End Function
</SCRIPT>
</BODY>
|
2
|
How can I change the control's foreground color

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.ForeColor = RGB(255,0,0)
.Text = "aka"
End With
End Function
</SCRIPT>
</BODY>
|
1
|
How can I change the control's background color

<BODY onload="Init()">
<OBJECT CLASSID="clsid:43F80262-F652-11D3-AD39-00C0DFC59237" id="MaskEdit1"></OBJECT>
<SCRIPT LANGUAGE="VBScript">
Function Init()
With MaskEdit1
.BackColor = RGB(255,0,0)
End With
End Function
</SCRIPT>
</BODY>
|